home *** CD-ROM | disk | FTP | other *** search
- /*
- * devSCSITape.h --
- *
- * Declarations of device switch routines for SCSI Tape drives.
- *
- * Copyright 1989 Regents of the University of California
- * Permission to use, copy, modify, and distribute this
- * software and its documentation for any purpose and without
- * fee is hereby granted, provided that the above copyright
- * notice appear in all copies. The University of California
- * makes no representations about the suitability of this
- * software for any purpose. It is provided "as is" without
- * express or implied warranty.
- *
- * $Header: /sprite/src/kernel/dev/RCS/devSCSITape.h,v 9.1 90/09/11 12:13:03 rab Exp $ SPRITE (Berkeley)
- */
-
- #ifndef _DEVSCSITAPE
- #define _DEVSCSITAPE
-
- extern ReturnStatus DevSCSITapeOpen _ARGS_((Fs_Device *devicePtr, int useFlags,
- Fs_NotifyToken token, int *flagsPtr));
- extern ReturnStatus DevSCSITapeRead _ARGS_((Fs_Device *devicePtr,
- Fs_IOParam *readPtr, Fs_IOReply *replyPtr));
- extern ReturnStatus DevSCSITapeWrite _ARGS_((Fs_Device *devicePtr,
- Fs_IOParam *writePtr, Fs_IOReply *replyPtr));
- extern ReturnStatus DevSCSITapeIOControl _ARGS_((Fs_Device *devicePtr,
- Fs_IOCParam *ioctlPtr, Fs_IOReply *replyPtr));
- extern ReturnStatus DevSCSITapeClose _ARGS_((Fs_Device *devicePtr,
- int useFlags, int openCount, int writerCount));
-
- #endif /* _DEVSCSITAPE */
-
-